home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / gmp-132.lha / gmp-1.3.2 / mpn_rshift.c < prev    next >
C/C++ Source or Header  |  1993-05-03  |  2KB  |  91 lines

  1. /* mpn_rshift -- Shift right a low-level natural-number integer.
  2.  
  3. Copyright (C) 1991 Free Software Foundation, Inc.
  4.  
  5. This file is part of the GNU MP Library.
  6.  
  7. The GNU MP Library is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 2, or (at your option)
  10. any later version.
  11.  
  12. The GNU MP Library is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with the GNU MP Library; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21. #include "gmp.h"
  22. #include "gmp-impl.h"
  23.  
  24. /* Shift U (pointed to by UP and USIZE limbs long) CNT bits to the right
  25.    and store the USIZE least significant limbs of the result at WP.
  26.    Return the size of the result.
  27.  
  28.    Argument constraints:
  29.    0. U must be normalized (i.e. it's most significant limb != 0).
  30.    1. 0 <= CNT < BITS_PER_MP_LIMB
  31.    2. If the result is to be written over the input, WP must be <= UP.
  32. */
  33.  
  34. mp_size
  35. #ifdef __STDC__
  36. mpn_rshift (mp_ptr wp,
  37.         mp_srcptr up, mp_size usize,
  38.         unsigned cnt)
  39. #else
  40. mpn_rshift (wp, up, usize, cnt)
  41.      mp_ptr wp;
  42.      mp_srcptr up;
  43.      mp_size usize;
  44.      unsigned cnt;
  45. #endif
  46. {
  47.   mp_limb high_limb, low_limb;
  48.   unsigned sh_1, sh_2;
  49.   mp_size i;
  50.  
  51.   if (usize == 0)
  52.     return 0;
  53.  
  54.   sh_1 = cnt;
  55.   if (sh_1 == 0)
  56.     {
  57.       if (wp != up)
  58.     {
  59.       /* Copy from low end to high end, to allow specified input/output
  60.          overlapping.  */
  61.       for (i = 0; i < usize; i++)
  62.         wp[i] = up[i];
  63.     }
  64.       return usize;
  65.     }
  66.  
  67.   wp -= 1;
  68.   sh_2 = BITS_PER_MP_LIMB - sh_1;
  69.   high_limb = up[0];
  70. #if 0
  71.   if (cy_limb != NULL)
  72.     *cy_limb = high_limb << sh_2;
  73. #endif
  74.   low_limb = high_limb;
  75.  
  76.   for (i = 1; i < usize; i++)
  77.     {
  78.       high_limb = up[i];
  79.       wp[i] = (low_limb >> sh_1) | (high_limb << sh_2);
  80.       low_limb = high_limb;
  81.     }
  82.   low_limb >>= sh_1;
  83.   if (low_limb != 0)
  84.     {
  85.       wp[i] = low_limb;
  86.       return usize;
  87.     }
  88.  
  89.   return usize - 1;
  90. }
  91.